home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / inf_src.arc / MAKERCOM < prev    next >
Text File  |  1986-03-14  |  640b  |  31 lines

  1. #
  2. #     Makefile 
  3.  
  4. # debug the file and do a 80286 model
  5.  
  6. #CFLAGS = /DDEBUG /G0 /Zd /Od /Fc
  7.  
  8. CFLAGS = /G0
  9.  
  10. # All object modules
  11.  
  12. rulecomp.obj : rulecomp.c expert.h keywords.h
  13.     msc $(CFLAGS) rulecomp.c ;
  14.  
  15. getkeywo.obj : getkeywo.c expert.h
  16.     msc $(CFLAGS) getkeywo.c ;
  17.  
  18. putstrin.obj : putstrin.c expert.h
  19.     msc $(CFLAGS) putstrin.c ;
  20.  
  21.  
  22. #     rulecomp.exe -- main target
  23. #
  24. rulecomp.exe : rulecomp.obj getkeywo.obj putstrin.obj 
  25.     link rulecomp.obj getkeywo.obj putstrin.obj ,rulecomp.exe,/STACK:15000 ;
  26. #    link rulecomp.obj getkeywo.obj putstrin.obj ,rulecomp.exe,/MAP/LINE/STACK:15000 ;
  27. #
  28. #    mapsym rulecomp
  29. #
  30.